home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1997 / MacHack 1997.toast / Hacks / Hacks ’97 / Warrior’s Progress / source code / Source / Libraries / Keyboard / Keyboard Protocols / HelpKeys.h < prev    next >
Encoding:
Text File  |  1997-06-28  |  200 b   |  17 lines  |  [TEXT/CWIE]

  1. // HelpKeys.h
  2.  
  3. #ifndef HelpKeys_h
  4. #define HelpKeys_h
  5.  
  6. #ifndef ContextUser_h
  7. #include "ContextUser.h"
  8. #endif
  9.  
  10. class HelpKeys: public ContextUser
  11.   {
  12.     public:
  13.         virtual void HelpKey() = 0;
  14.   };
  15.  
  16. #endif
  17.